home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxccache.c < prev    next >
C/C++ Source or Header  |  1997-02-17  |  14KB  |  433 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxccache.c */
  20. /* Fast case character cache routines for Ghostscript library */
  21. #include "gx.h"
  22. #include "gpcheck.h"
  23. #include "gserrors.h"
  24. #include "gsstruct.h"
  25. #include "gxfixed.h"
  26. #include "gxmatrix.h"
  27. #include "gzstate.h"
  28. #include "gzpath.h"
  29. #include "gxdevice.h"
  30. #include "gxdevmem.h"
  31. #include "gzcpath.h"
  32. #include "gxchar.h"
  33. #include "gxfont.h"
  34. #include "gxfcache.h"
  35. #include "gxxfont.h"
  36. #include "gscspace.h"            /* for gsimage.h */
  37. #include "gsimage.h"
  38. #include "gxhttile.h"
  39.  
  40. /* Forward references */
  41. private byte *compress_alpha_bits(P2(const cached_char *, gs_memory_t *));
  42.  
  43. /* Define a scale factor of 1. */
  44. static const gs_log2_scale_point scale_log2_1 = { 0, 0 };
  45.  
  46. /* Look up, and if necessary add, a font/matrix pair in the cache */
  47. cached_fm_pair *
  48. gx_lookup_fm_pair(gs_font *pfont, register const gs_state *pgs)
  49. {    float    mxx = pgs->char_tm.xx, mxy = pgs->char_tm.xy,
  50.         myx = pgs->char_tm.yx, myy = pgs->char_tm.yy;
  51.     gs_font *font = pfont;
  52.     register gs_font_dir *dir = font->dir;
  53.     register cached_fm_pair *pair =
  54.         dir->fmcache.mdata + dir->fmcache.mnext;
  55.     int count = dir->fmcache.mmax;
  56.     gs_uid uid;
  57.     if ( font->FontType == ft_composite )
  58.     {    uid_set_invalid(&uid);
  59.     }
  60.     else
  61.     {    uid = ((gs_font_base *)font)->UID;
  62.         if ( uid_is_valid(&uid) )
  63.             font = 0;
  64.     }
  65.     while ( count-- )
  66.     {    if ( pair == dir->fmcache.mdata )
  67.             pair += dir->fmcache.mmax;
  68.         pair--;
  69.         /* We have either a non-zero font and an invalid UID, */
  70.         /* or a zero font and a valid UID. */
  71.         /* We have to break up the test */
  72.         /* because of a bug in the Zortech compiler. */
  73.         if ( font != 0 )
  74.         {    if ( pair->font != font ) continue;
  75.         }
  76.         else
  77.         {    if ( !uid_equal(&pair->UID, &uid) ) continue;
  78.         }
  79.         if (    pair->mxx == mxx && pair->mxy == mxy &&
  80.             pair->myx == myx && pair->myy == myy
  81.            )
  82.         {    if ( pair->font == 0 )
  83.             {    pair->font = pfont;
  84.                 if_debug2('k', "[k]updating pair 0x%lx with font 0x%lx\n",
  85.                       (ulong)pair, (ulong)pfont);
  86.             }
  87.             else
  88.             {    if_debug2('k', "[k]found pair 0x%lx: font=0x%lx\n",
  89.                       (ulong)pair, (ulong)pair->font);
  90.             }
  91.             return pair;
  92.         }
  93.     }
  94.     return gx_add_fm_pair(dir, pfont, &uid, pgs);
  95. }
  96.  
  97. /* Look up a glyph in the cache. */
  98. /* The character depth must be either 1 or alt_depth. */
  99. /* Return the cached_char or 0. */
  100. cached_char *
  101. gx_lookup_cached_char(const gs_font *pfont, const cached_fm_pair *pair,
  102.   gs_glyph glyph, int wmode, int alt_depth)
  103. {    gs_font_dir *dir = pfont->dir;
  104.     uint chi = chars_head_index(glyph, pair);
  105.     register cached_char *cc;
  106.     while ( (cc = dir->ccache.table[chi & dir->ccache.table_mask]) != 0 )
  107.     {    if ( cc->code == glyph && cc_pair(cc) == pair &&
  108.              cc->wmode == wmode && (cc_depth(cc) == 1 || cc_depth(cc) == alt_depth)
  109.            )
  110.         {    if_debug4('K', "[K]found 0x%lx (depth=%d) for glyph=0x%lx, wmode=%d\n",
  111.                   (ulong)cc, cc_depth(cc), (ulong)glyph, wmode);
  112.             return cc;
  113.         }
  114.         chi++;
  115.     }
  116.     if_debug3('K', "[K]not found: glyph=0x%lx, wmode=%d, alt_depth=%d\n",
  117.           (ulong)glyph, wmode, alt_depth);
  118.     return 0;
  119. }
  120.  
  121. /* Look up a character in an external font. */
  122. /* Return the cached_char or 0. */
  123. cached_char *
  124. gx_lookup_xfont_char(const gs_state *pgs, cached_fm_pair *pair,
  125.   gs_char chr, gs_glyph glyph, const gx_xfont_callbacks *callbacks, int wmode)
  126. {    gs_font *font = pair->font;
  127.     int enc_index;
  128.     gx_xfont *xf;
  129.     gx_xglyph xg;
  130.     gs_log2_scale_point log2_scale;
  131.     gs_point wxy;
  132.     gs_int_rect bbox;
  133.     cached_char *cc;
  134.  
  135.     if ( font == 0 )
  136.         return NULL;
  137.     enc_index =
  138.         (font->FontType == ft_composite ? -1 :
  139.          ((gs_font_base *)font)->nearest_encoding_index);
  140.     if ( !pair->xfont_tried )
  141.     {    /* Look for an xfont now. */
  142.         gx_lookup_xfont(pgs, pair, enc_index);
  143.         pair->xfont_tried = true;
  144.     }
  145.     xf = pair->xfont;
  146.     if ( xf == 0 )
  147.         return NULL;
  148.     { const gx_xfont_procs *procs = xf->common.procs;
  149.       if ( procs->char_xglyph2 == 0 )
  150.         { /* The xfont can't recognize reencoded fonts. */
  151.           /* Use the registered encoding only if this glyph */
  152.           /* is the same as the one in the registered encoding. */
  153.           if ( enc_index >= 0 &&
  154.            (*callbacks->known_encode)(chr, enc_index) != glyph
  155.          )
  156.         enc_index = -1;
  157.           xg = (*procs->char_xglyph)(xf, chr, enc_index, glyph,
  158.                      callbacks->glyph_name);
  159.         }
  160.       else
  161.         { /* The xfont can recognize reencoded fonts. */
  162.           xg = (*procs->char_xglyph2)(xf, chr, enc_index, glyph,
  163.                       callbacks);
  164.         }
  165.       if ( xg == gx_no_xglyph )
  166.         return NULL;
  167.       if ( (*procs->char_metrics)(xf, xg, wmode, &wxy, &bbox) < 0 )
  168.         return NULL;
  169.     }
  170.     log2_scale.x = log2_scale.y = 1;
  171.     cc = gx_alloc_char_bits(font->dir, NULL, NULL, bbox.q.x - bbox.p.x,
  172.                 bbox.q.y - bbox.p.y, &log2_scale, 1);
  173.     if ( cc == 0 )
  174.         return NULL;
  175.     /* Success.  Make the cache entry. */
  176.     cc->code = glyph;
  177.     cc->wmode = wmode;
  178.     cc->xglyph = xg;
  179.     cc->wxy.x = float2fixed(wxy.x);
  180.     cc->wxy.y = float2fixed(wxy.y);
  181.     cc->offset.x = int2fixed(-bbox.p.x);
  182.     cc->offset.y = int2fixed(-bbox.p.y);
  183.     if_debug5('k', "[k]xfont %s char %d/0x%x#0x%lx=>0x%lx\n",
  184.           font->font_name.chars, enc_index, (int)chr,
  185.           (ulong)glyph, (ulong)xg);
  186.     if_debug6('k', "     wxy=(%g,%g) bbox=(%d,%d),(%d,%d)\n",
  187.           wxy.x, wxy.y, bbox.p.x, bbox.p.y, bbox.q.x, bbox.q.y);
  188.     gx_add_cached_char(font->dir, NULL, cc, pair, &scale_log2_1);
  189.     return cc;
  190. }
  191.  
  192. /* Copy a cached character to the screen. */
  193. /* Assume the caller has already done gx_color_load. */
  194. /* Return 0 if OK, 1 if we couldn't do the operation but no error */
  195. /* should be signalled, or a negative error code. */
  196. int
  197. gx_image_cached_char(register gs_show_enum *penum, register cached_char *cc)
  198. {    register gs_state *pgs = penum->pgs;
  199.     gx_device_color *pdevc = pgs->dev_color;
  200.     int x, y, w, h, depth;
  201.     int code;
  202.     gs_fixed_point pt;
  203.     gx_device *dev = gs_currentdevice_inline(pgs);
  204.     gx_device *orig_dev = dev;
  205.     gx_device_clip cdev;
  206.     gx_xglyph xg = cc->xglyph;
  207.     gx_xfont *xf;
  208.     byte *bits;
  209.  
  210. top:    code = gx_path_current_point_inline(pgs->path, &pt);
  211.     if ( code < 0 ) return code;
  212.     /*
  213.      * If the character doesn't lie entirely within the inner
  214.      * clipping rectangle, we set up an intermediate clipping device.
  215.      * Note that if the original device implements fill_mask, we may
  216.      * never actually use the clipping device.
  217.      */
  218.     pt.x -= cc->offset.x;
  219.     x = fixed2int_var_rounded(pt.x) + penum->ftx;
  220.     pt.y -= cc->offset.y;
  221.     y = fixed2int_var_rounded(pt.y) + penum->fty;
  222.     w = cc->width;
  223.     h = cc->height;
  224. #ifdef DEBUG
  225.     if ( gs_debug_c('K') )
  226.     {    if ( cc_has_bits(cc) )
  227.             debug_dump_bitmap(cc_bits(cc), cc_raster(cc), h,
  228.                       "[K]bits");
  229.         else
  230.             dputs("[K]no bits\n");
  231.         dprintf3("[K]copying 0x%lx, offset=(%g,%g)\n", (ulong)cc,
  232.              fixed2float(-cc->offset.x),
  233.              fixed2float(-cc->offset.y));
  234.         dprintf6("   at (%g,%g)+(%d,%d)->(%d,%d)\n",
  235.              fixed2float(pt.x), fixed2float(pt.y),
  236.              penum->ftx, penum->fty, x, y);
  237.     }
  238. #endif
  239.     if (    (x < penum->ibox.p.x || x + w > penum->ibox.q.x ||
  240.          y < penum->ibox.p.y || y + h > penum->ibox.q.y) &&
  241.         dev != (gx_device *)&cdev    /* might be 2nd time around */
  242.        )
  243.     {    /* Check for the character falling entirely outside */
  244.         /* the clipping region. */
  245.         if ( x >= penum->obox.q.x || x + w <= penum->obox.p.x ||
  246.              y >= penum->obox.q.y || y + h <= penum->obox.p.y
  247.            )
  248.             return 0;        /* nothing to do */
  249.         gx_make_clip_device(&cdev, &cdev, &pgs->clip_path->list);
  250.         cdev.target = dev;
  251.         dev = (gx_device *)&cdev;
  252.         (*dev_proc(dev, open_device))(dev);
  253.         if_debug0('K', "[K](clipping)\n");
  254.     }
  255.     /* If an xfont can render this character, use it. */
  256.     if ( xg != gx_no_xglyph && (xf = cc_pair(cc)->xfont) != 0 )
  257.     {    int cx = x + fixed2int(cc->offset.x);
  258.         int cy = y + fixed2int(cc->offset.y);
  259.         /*
  260.          * Note that we prefer a 1-bit xfont implementation over
  261.          * a multi-bit cached bitmap.  Eventually we should change
  262.          * the xfont interface so it can deliver multi-bit bitmaps,
  263.          * or else implement oversampling for xfonts.
  264.          */
  265.         if ( gs_color_writes_pure(pgs) )
  266.         {    code = (*xf->common.procs->render_char)(xf, xg,
  267.                 dev, cx, cy, pdevc->colors.pure, 0);
  268.             if_debug8('K', "[K]render_char display: xfont=0x%lx, glyph=0x%lx\n\tdev=0x%lx(%s) x,y=%d,%d, color=0x%lx => %d\n",
  269.                   (ulong)xf, (ulong)xg, (ulong)dev,
  270.                   dev->dname, cx, cy,
  271.                   (ulong)pdevc->colors.pure, code);
  272.             if ( code == 0 )
  273.                 return_check_interrupt(0);
  274.         }
  275.         /* Can't render directly.  If we don't have a bitmap yet, */
  276.         /* get it from the xfont now. */
  277.         if ( !cc_has_bits(cc) )
  278.         {    gx_device_memory mdev;
  279.             gs_make_mem_mono_device(&mdev, 0, dev);
  280.             gx_open_cache_device(&mdev, cc);
  281.             code = (*xf->common.procs->render_char)(xf, xg,
  282.                 (gx_device *)&mdev, cx - x, cy - y,
  283.                 (gx_color_index)1, 1);
  284.             if_debug7('K', "[K]render_char to bits: xfont=0x%lx, glyph=0x%lx\n\tdev=0x%lx(%s) x,y=%d,%d => %d\n",
  285.                   (ulong)xf, (ulong)xg, (ulong)&mdev,
  286.                   mdev.dname, cx - x, cy - y, code);
  287.             if ( code != 0 )
  288.                 return_check_interrupt(1);
  289.             gx_add_char_bits(cc_pair(cc)->font->dir,
  290.                      cc, &scale_log2_1);
  291.             /* gx_add_char_bits may change width, height, */
  292.             /* raster, and/or offset.  It's easiest to */
  293.             /* start over from the top.  Clear xg so that */
  294.             /* we don't waste time trying render_char again. */
  295.             xg = gx_no_xglyph;
  296.             goto top;
  297.         }
  298.     }
  299.     /*
  300.      * No xfont.  Render from the cached bits.  If the cached bits
  301.      * have more than 1 bit of alpha, and the color isn't pure or
  302.      * the copy_alpha operation fails, construct a single-bit mask
  303.      * by taking the high-order alpha bit.
  304.      */
  305.     bits = cc_bits(cc);
  306.     depth = cc_depth(cc);
  307.     if ( orig_dev->std_procs.fill_mask != gx_default_fill_mask )
  308.       {    code = (*dev_proc(orig_dev, fill_mask))
  309.           (orig_dev, bits, 0, cc_raster(cc), cc->id,
  310.            x, y, w, h, pdevc, depth, pgs->log_op, pgs->clip_path);
  311.         if ( code >= 0 )
  312.           goto done;
  313.       }
  314.     else if ( gs_color_writes_pure(pgs) )
  315.       {    gx_color_index color = pdevc->colors.pure;
  316.         if ( depth > 1 )
  317.           {    code = (*dev_proc(dev, copy_alpha))
  318.               (dev, bits, 0, cc_raster(cc), cc->id,
  319.                x, y, w, h, color, depth);
  320.             if ( code >= 0 )
  321.               return_check_interrupt(0);
  322.             /* copy_alpha failed, construct a monobit mask. */
  323.             bits = compress_alpha_bits(cc, &gs_memory_default);
  324.             if ( bits == 0 )
  325.               return 1;    /* VMerror, but recoverable */
  326.           }
  327.         code = (*dev_proc(dev, copy_mono))
  328.           (dev, bits, 0, cc_raster(cc), cc->id,
  329.            x, y, w, h, gx_no_color_index, pdevc->colors.pure);
  330.         goto done;
  331.       }
  332.     if ( depth > 1 )
  333.       {    /* Complex color or fill_mask / copy_alpha failed, */
  334.         /* construct a monobit mask. */
  335.         bits = compress_alpha_bits(cc, &gs_memory_default);
  336.         if ( bits == 0 )
  337.           return 1;    /* VMerror, but recoverable */
  338.  
  339.       }
  340.     {    /* Use imagemask to render the character. */
  341.         gs_image_enum *pie = gs_image_enum_alloc(&gs_memory_default,
  342.                         "image_char(image_enum)");
  343.         gs_image_t image;
  344.         int iy;
  345.         uint used;
  346.  
  347.         if ( pie == 0 )
  348.           { if ( bits != cc_bits(cc) )
  349.               gs_free_object(&gs_memory_default, bits,
  350.                      "compress_alpha_bits");
  351.             return 1;    /* VMerror, but recoverable */
  352.           }
  353.         /* Make a matrix that will place the image */
  354.         /* at (x,y) with no transformation. */
  355.         gs_image_t_init_mask(&image, true);
  356. #define mat image.ImageMatrix
  357.         gs_make_translation((floatp)-x, (floatp)-y, &mat);
  358.         gs_matrix_multiply(&ctm_only(pgs), &mat, &mat);
  359. #undef mat
  360.         image.Width = w;
  361.         image.Height = h;
  362.         image.adjust = false;
  363.         code = gs_image_init(pie, &image, false, pgs);
  364.         switch ( code )
  365.         {
  366.         case 1:            /* empty image */
  367.             code = 0;
  368.         default:
  369.             break;
  370.         case 0:
  371.             for ( iy = 0; iy < h && code >= 0; iy++ )
  372.               code = gs_image_next(pie, bits + iy * cc_raster(cc),
  373.                            (w + 7) >> 3, &used);
  374.             gs_image_cleanup(pie);
  375.         }
  376.         gs_free_object(&gs_memory_default, pie,
  377.                    "image_char(image_enum)");
  378.     }
  379. done:    if ( bits != cc_bits(cc) )
  380.       gs_free_object(&gs_memory_default, bits, "compress_alpha_bits");
  381.     if ( code > 0 )
  382.       code = 0;
  383.     return_check_interrupt(code);
  384. }
  385.  
  386. /* ------ Image manipulation ------ */
  387.  
  388. /*
  389.  * Compress a mask with 2 or 4 bits of alpha to a monobit mask.
  390.  * Allocate and return the address of the monobit mask.
  391.  */
  392. private byte *
  393. compress_alpha_bits(const cached_char *cc, gs_memory_t *mem)
  394. {    const byte *data = cc_const_bits(cc);
  395.     uint width = cc->width;
  396.     uint height = cc->height;
  397.     int log2_scale = cc_depth(cc);
  398.     int scale = 1 << log2_scale;
  399.     uint sraster = cc_raster(cc);
  400.     uint sskip = sraster - ((width * scale + 7) >> 3);
  401.     uint draster = bitmap_raster(width);
  402.     uint dskip = draster - ((width + 7) >> 3);
  403.     byte *mask = gs_alloc_bytes(mem, draster * height,
  404.                     "compress_alpha_bits");
  405.     const byte *sptr = data;
  406.     byte *dptr = mask;
  407.     uint h;
  408.  
  409.     if ( mask == 0 )
  410.       return 0;
  411.     for ( h = height; h; --h )
  412.     {    byte sbit = 0x80;
  413.         byte d = 0;
  414.         byte dbit = 0x80;
  415.         uint w;
  416.  
  417.         for ( w = width; w; --w )
  418.           {    if ( *sptr & sbit )
  419.               d += dbit;
  420.             if ( !(sbit >>= log2_scale) )
  421.               sbit = 0x80, sptr++;
  422.             if ( !(dbit >>= 1) )
  423.               dbit = 0x80, dptr++, d = 0;
  424.           }
  425.         if ( dbit != 0x80 )
  426.           *dptr++ = d;
  427.         for ( w = dskip; w != 0; --w )
  428.           *dptr++ = 0;
  429.         sptr += sskip;
  430.     }
  431.     return mask;
  432. }
  433.